home *** CD-ROM | disk | FTP | other *** search
-
- Oki, here we go again withanother question.
-
-
- Is it slowing the program down if i have alot of procedures
- that the main procedures jumps to and return back to, like this:
- (I have five of the Main procedures)
-
- Procedure Main1
- (loadsa Code)
- A
- (some code)
- B
- (some code)
- C
- (some code)
- D
- (some code)
- E
- (some code)
- F
- (some code)
- G
- (some code)
- endproc
-
- Procedure A
- (do some stuff)
- Endproc
- Procedure B
- (do some stuff)
- Endproc
- Procedure C
- (do some stuff)
- Endproc
- Procedure D
- (do some stuff)
- Endproc
- Procedure F
- (do some stuff)
- Endproc
- Procedure G
- (do some stuff)
- Endproc
-
-
- Will this be slower than having all the code in Procedure A,B,C,D,E,F ang G
- in gosubs inside the Main1 proceure????
- But then again if i must have all the code in Procedure A-G inside Main 1
- procedure then i must have all that code inside Main 2-5 also.
-
- What will be quickest and easiest?????
-
-
- Thanx
-
- Morten Bolstad
-
-
-
-
-
-
-
-